home *** CD-ROM | disk | FTP | other *** search
-
- ////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////
- //
- // hf-1.pov
- //
- // Run this at 320x200 to make a TGA height_field file.
- //
- // This file is a slightly modified version of the one
- // included in the POV-Ray 3.0 height_field tutorial.
- //
- ////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////
-
- #include "colors.inc"
-
- global_settings { assumed_gamma 2.2 hf_gray_16 }
-
- camera { location <0, 0, -10> look_at 0 }
-
- plane { z, 10 hollow
- pigment { wrinkles
- color_map { [0 0.3*White][1 White] }
- turbulence 0.3 } }
-
- light_source { <0, 20, -100> color White }
-
- ////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////
- //
- // Bye!
-
-